body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #0f172a;
      color: #e5e7eb;
    }
    header {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 40px;
      background: #020617;
      box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    }
    
    .head{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    img#p{
        transition: transform 1.2;
        padding-right: 8%;
        border-radius: 5%;
    }


    header img {
      height: 70px;
      margin-right: 20px;
      border-radius: 6px;
    }
    header h1 {
      font-size: 28px;
      letter-spacing: 1px;
    }
    .hero {
      padding: 80px 40px;
      text-align: center;
      background: linear-gradient(135deg, #020617, #020617 40%, #0f172a);
    }
    .hero h2 {
      font-size: 42px;
      margin-bottom: 10px;
    }
    .hero p {
      font-size: 18px;
      color: #cbd5f5;
      max-width: 800px;
      margin: 0 auto;
    }
    .skills {
      padding: 60px 40px;
      max-width: 1100px;
      margin: 0 auto;
    }
    .skills h3 {
      font-size: 32px;
      text-align: center;
      margin-bottom: 40px;
    }
    .skill-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
    }
    .card {
      background: #020617;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    }
    .card h4 {
      font-size: 20px;
      margin-bottom: 10px;
      color: #93c5fd;
    }
    .card p {
      font-size: 14px;
      color: #cbd5f5;
    }
    footer {
      text-align: center;
      padding: 25px;
      background: #020617;
      color: #94a3b8;
      font-size: 14px;
    }

div.py{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Verdana;
    font-size: 1.2em;
    color: whitesmoke
}
    
